home *** CD-ROM | disk | FTP | other *** search
/ The Utilities Experience / The Utilities Experience - Volume 1.iso / software / demos / r-z / stormc-demo / include / clib / alib_stdio_protos.h < prev    next >
C/C++ Source or Header  |  1996-01-02  |  831b  |  40 lines

  1. #ifndef  CLIB_ALIB_STDIO_PROTOS_H
  2. #define  CLIB_ALIB_STDIO_PROTOS_H
  3.  
  4. /*
  5. **    $VER: alib_stdio_protos.h 39.1 (25.8.92)
  6. **    Includes Release 40.15
  7. **
  8. **    C prototypes. For use with 32 bit integers only.
  9. **
  10. **    (C) Copyright 1990-1993 Commodore-Amiga, Inc.
  11. **        All Rights Reserved
  12. */
  13.  
  14. #ifndef  EXEC_TYPES_H
  15. #include <exec/types.h>
  16. #endif
  17.  
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21.  
  22. /* stdio functions that duplicate those in a typical C library */
  23.  
  24. LONG printf( STRPTR fmt, ... );
  25. LONG sprintf( STRPTR buffer, STRPTR fmt, ... );
  26. LONG fclose( long stream );
  27. LONG fgetc( long stream );
  28. LONG fprintf( long stream, STRPTR fmt, ... );
  29. LONG fputc( long c, long stream );
  30. LONG fputs( UBYTE *s, long stream );
  31. LONG getchar( void );
  32. LONG putchar( long c );
  33. LONG puts( BYTE *s );
  34.  
  35. #ifdef __cplusplus
  36. }
  37. #endif
  38.  
  39. #endif     /* CLIB_ALIB_STDIO_PROTOS_H */
  40.